home *** CD-ROM | disk | FTP | other *** search
/ AMIGA-CD 2 / Amiga-CD - Volume 2.iso / ungepackte_daten / 1992 / 11 / 02 / makecat / c-beispiel / test.h < prev   
Encoding:
C/C++ Source or Header  |  1995-06-01  |  437 b   |  34 lines

  1. #include <exec/types.h>
  2.  
  3. struct LocText {
  4.   ULONG id;
  5.   char *text;
  6. };
  7.  
  8. #ifdef LOCALE_TEXT
  9.  
  10. #define LOCALE_START
  11. /*
  12.     CATALOG     test
  13.     VERSION  38.1
  14.     CATDATE  xx.xx.xx
  15. */
  16.  
  17. struct LocText FirstText={0,"This is the first text"};
  18. /*
  19.     D    "Dieses ist der erste Text"
  20. */
  21.  
  22. struct LocText SecondText={1,"This is the second text"};
  23. /*
  24.     D    "Dieses ist der zweite Text"
  25. */
  26.  
  27. struct LocText Bye={2,"Bye Bye"};
  28. /*
  29.     D    "Tschüß"
  30. */
  31.  
  32. #define LOCALE_END
  33. #endif
  34.